body {
    background-image: url(/images/starfield.png);
    background-size: contain;
    width: 100%;
    height: 100%;
    font-family: 'Verdana', sans-serif;
    color: greenyellow;
    display: grid;
    grid-template-columns: 1fr 80% 1fr;
    grid-template-rows: 60px 120px 9050px;
    grid-row-gap: 18px;
}

.topbar {
    grid-column-start: 1;
    grid-column-end: 4;
    border: 3px solid;
    border-color: black;
    height: 45px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-radius: 20px 20px 20px 20px;
}

.takepick {
    grid-column-start: 1;
    grid-column-end: 4;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 4em;
}

.main {
    grid-column-start: 2;
    grid-row-start: 3;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

#comicdubs {
   transform: translate(0px, 5px);
    scale: 1.025;
    background-color: #690069
}

.barbutton {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    text-decoration: none;
    color: greenyellow;
    cursor: pointer;
    background-color: purple;
    border: 3px solid;
    border-color: mediumpurple;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.barbutton:hover{
    background-color: mediumpurple;
    border-color: purple;
    color: lawngreen;
}

.comicbutton {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    text-decoration: none;
    font-size: 1.40em;
    color: white;
    -webkit-text-stroke: 1px black;
    cursor: pointer;
    background-image: url(/images/rainbow.gif);
    border: 3px solid;
    border-color: mediumpurple;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.comicbutton:hover{
    width: 105%;
    height: 105%;
    border-color: white;
    color: black;
    -webkit-text-stroke: 1px white;
}

.hub {
    width: 100%;
    height: 100%;
    background-color: purple;
    border: 3px solid;
    border-color: mediumpurple;
    border-radius: 20px 0px 0px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    text-decoration: none;
    color:greenyellow;
    cursor: pointer;
}

.hub:hover{
    background-color: mediumpurple;
    border-color: purple;
    color: lawngreen;
}

.indieweb {
    width: 100%;
    height: 100%;
    background-color: purple;
    border: 3px solid;
    border-color: mediumpurple;
    border-radius: 0px 20px 20px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    text-decoration: none;
    color:greenyellow;
    cursor: pointer;
}

.indieweb:hover{
    background-color: mediumpurple;
    border-color: purple;
    color: lawngreen;
}

.videochoice {
    width: 100%;
    height: 510px;
    background-color: rgba(44, 184, 143, 0.5);
    margin: 10px;
    color: #ddff00;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 100px 345px 65px;
}

.videobox {
    max-width: 590px;
    min-width: 380px;
    height: 345px;
    grid-column-start: 2;
    grid-row-start: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #c6b7c8;
    border-radius: 50px;
}

.frameback {
    width: 90%;
    height: 315px;
    background-image: url(/images/screen-glitch.gif);
}

.framebackclean {
    width: 90%;
    min-height: 315px;
    min-width: 345px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;
}

.greentint {
    width: 100%;
    height: 100%;
    background-color:  rgba(108, 153, 106, 0.45);
    display: flex;
    justify-content: center;
    align-items: center;
}

.episodeannou {
    grid-row-start: 1;
    grid-column-start: 1;
    grid-column-end: 4;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 3em;
}

.eptitle {
    grid-row-start: 3;
    grid-column-start: 1;
    grid-column-end: 4;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.readinstead {
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #ffe600;
    color: indigo;
    font-size: 1.5em;
    width: 125px;
    border: 3px solid;
    transition: 45ms;
}

.readinstead:hover{
    scale: 1.1;
    background-color: lightgoldenrodyellow;
}